Keycloak REST Services 1.5.0-Final

Path: / admin / realms / {realm} / authentication / config / {id}

Path parameters:
realm - realm name (not id!)
id -

Resource Methods
Method Summary
NameDescription
GET /admin/realms/{realm}/authentication/config/{id} 
DELETE /admin/realms/{realm}/authentication/config/{id} 
PUT /admin/realms/{realm}/authentication/config/{id} 

Method Detail

GET /admin/realms/{realm}/authentication/config/{id}

HTTP Example:
GET /admin/realms/{realm}/authentication/config/{id}
API Example:

AuthenticationManagementResource.getAuthenticatorConfig({'realm': /* name realm name (not id!) */,
  'id': …});

Output:
AuthenticatorConfigModel
Produces:
application/json

DELETE /admin/realms/{realm}/authentication/config/{id}

HTTP Example:
DELETE /admin/realms/{realm}/authentication/config/{id}
API Example:

AuthenticationManagementResource.removeAuthenticatorConfig({'realm': /* name realm name (not id!) */,
  'id': …});

Output:
void

PUT /admin/realms/{realm}/authentication/config/{id}

HTTP Example:
PUT /admin/realms/{realm}/authentication/config/{id}
API Example:

AuthenticationManagementResource.updateAuthenticatorConfig({'realm': /* name realm name (not id!) */,
  'id': …,
  '$entity': …});

Input:
AuthenticatorConfigModel
Output:
void
Consumes:
application/json

Keycloak REST Services 1.5.0-Final